1.程式小練習(計算銀行利息程式):
#include <iostream>
#define rate 0.7654
using namespace std;
int main()
{
//宣告整數 myAccount
int myAccount;
//印出指令
cout<<"請輸入存款金額:";
//將輸入的金額存入變數myAccount
cin>>myAccount;
//印出利率計算的結果
cout<<"戶頭利息:"<<myAccount *rate<<endl;
return 0;
}
執行結果:
2.關係運算符號:
大於
< 小於
= 大於等於
<= 小於等於
== 等於(比較)
!= 不等於
實作小練習:
#include <iostream>
using namespace std;
int main ()
{
int a = 4;
int b = 4;
int c,d,e;
c=(a==b);
d=(a<b);
e=(c!=d);
cout<<"c"<<c<<endl;
cout<<"d"<<d<<endl;
cout<<"e"<<e<<endl;
return 0;
}
執行結果:
3.邏輯運算
&& and
|| or
! not
實作小練習:
#include <iostream>
using namespace std;
int main()
{
int number;
bool check = false;
cout <<"請輸入一個整數:";
cin>>number;
check = (number>=100 && number<= 999);
cout<< "3位數檢查結果:"<<check<<""(如為1則為3位數,0 為非3位數)"<<endl;
return 0;
}
執行結果:
!!以上內容是看第一次學C++就上手第二版第三章這本書跟著實際操作的題目內容!!
明天還會繼續跟著實際操作,今天的小練習都很順利執行~